home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE23
/
STARTUP
/
StubExe32.dpr
< prev
next >
Wrap
Text File
|
1996-03-20
|
361b
|
18 lines
program StubExe32;
{$ifndef WIN32}
'This needs Delphi 32...'
{$endif}
{$AppType Console}
uses
Forms,
StubExe32U in 'StubExe32U.pas' {Form1};
{$R *.RES}
begin
WriteLn('APP: Beginning of project source');
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
WriteLn('APP: End of project source');
end.